@echo off
REM GONet Network Simulation - Custom Settings
REM Edit the values below to create your own network conditions
REM Auto-detect determines if this instance is server or client
REM Rename to .bat and change GONetSandbox.exe to your game name
REM
REM IMPORTANT: Network simulation only works in DEVELOPMENT BUILDS or the Unity Editor!
REM            These arguments are ignored in Release builds (compiled out for zero overhead).

REM Configuration (edit these values):
SET LATENCY=75
SET JITTER=25
SET LOSS=3

START GONetSandbox.exe -netsim -latency %LATENCY% -jitter %JITTER% -loss %LOSS%
